#hero {
  width: 100%;
  height: 70vh;
  background: url("../img/images/ne-review-hero-banner.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
  
}


/* Media query for screens smaller than 768px (adjust as needed) */
@media (max-width: 768px) {
  #hero {
    background-position: calc(100% - 25%) center;
  }
}
#hero:before {
  content: "";
  background:  linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
